Gestalt Selector for the Mac OS 8.5 Dialog Manager
Before calling any Dialog Manager functions, your application should pass the selector
gestaltDialogManagerAttr
to the
Gestalt
function to determine which Dialog Manager functions are available.
enum {
gestaltDialogManagerAttr = 'dlog',
gestaltDialogManagerPresent = (1L << 0)
};
Constant descriptions
-
gestaltDialogManagerAttr
-
The
Gestalt
selector passed to determine what features of the Dialog Manager are present. This selector is available with Mac OS 8.5 and later. Passing
gestaltDialogManagerAttr
produces a 32-bit value whose bits you should test to determine what Dialog Manager functionality is available.
-
gestaltDialogManagerPresent
-
If the bit specified by this mask is set, the Dialog Manager functionality for Appearance Manager 1.1 is available. This bit is set for Mac OS 8.5 and later.
© 1999 Apple Computer, Inc. — (Last Updated 19 Jan 99)